summaryrefslogtreecommitdiff
path: root/frontend/src/pages/[locale]/staticPaths.ts
blob: 266ad2c44324216d0863bd4efa79a6aaf5904df6 (plain)
1
2
3
4
5
6
7
8
9
10
import type Locale from '../../types/Locale';

// Defines what values to insert into the [locale] URL path parameter
// when generating a static site
const staticPaths: { params: { locale: Locale} }[] = [
  { params: { locale: 'sco' } },
  { params: { locale: 'en-GB' } },
]

export default staticPaths;